@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: 'NunitoExtraLight';
	src: url('Fonts/Nunito/static/Nunito-ExtraLight.ttf') format('truetype');
	font-weight: light;
	font-style: normal;
}

@font-face {
	font-family: 'Nunito Regular';
	src: url('Fonts/Nunito/static/Nunito-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Nunito Bold';
	src: url('Fonts/Nunito/static/Nunito-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

:root {
	--text-light: #778087;
	--text-gray: #192025;
	--accent-color: #c1abff;
	--primary-light: #ffffff;
	--secondary-dark: #192025;
	--gradient-90: linear-gradient(90deg, #ffabd6, #c1abff, #abd6ff);
	--gradient 180: linear-gradient(180deg, #ffabd6, #c1abff, #abd6ff);
	--primary-bara:#abd6ff;
	--primary-kat: #ffabd6;
	--primary-mara: #c1abff;
	--gradient-flow: linear-gradient(
    90deg,
    #ffabd6,
    #c1abff,
    #abd6ff,
    #ffabd6  
  );
}

@keyframes flow-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.gradient-flow {
  background: var(--gradient-flow);
  background-size: 300% 100%;
  animation: flow-gradient 4s linear infinite;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.6;
	font-family: 'NunitoExtraLight',sans-serif;
	color: '#192025';
}

button {
	line-height: 1.6;
	font-family: 'NunitoExtraLight',sans-serif;
	color: '#192025';
	font-size: 1rem;
}

/* Global Styling */

.info-section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	
}

.info-div {
	display: flex;
	position: relative;
	flex-direction: column;
	padding: 50px;
	justify-content: center;
	align-items: center;
	transform: translateX(-1%);
	width: 100%;
	max-width: 1400px;
	gap: 30px;
	text-align: center;
}

.info-div ul {
	text-align: left;
	align-items: left;
}

.info-div h1 {
	letter-spacing: 4px;
	
}



::-webkit-scrollbar {
	width: 16px;
}

::-webkit-scrollbar-track {
	background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #ffabd6, #c1abff, #abd6ff);
	border-radius: 0px;
}


/* Header Navigation */


.view-cart-slot {
	position: absolute;
	right: -300px;
	bottom: 5px;
	scale: 0.8;
}

.view-cart-slot .buttonColorStyle{
	background-color: #ffffff;
	opacity: 0.6;
}

.view-cart-slot .buttonColorStyle:enabled:hover {
	opacity: 1;
	background-color: #ffffff;
}

header {
	position: relative;
	height: 150px;
	transition: all 0.3s ease;
}

.main-header {
	height: 150px;
	background: linear-gradient(90deg, #ffabd6, #c1abff, #abd6ff);
}

.sub-header {
	position: sticky;
	top: 0px;
	height: 40px;
	width: 100%;
	transition: all 0.3s ease;
	background: linear-gradient(90deg, #ffabd6, #c1abff, #abd6ff);	
	z-index: 1001;
}

.header-logo{
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-56%);
	width: 550px;
	z-index: 1001;	
}


nav {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
	height: 100%;
}

.nav-menu {
	display: flex;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	list-style: none;
	gap: 140px;
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: relative;
	transition: all 0.3s ease;
}

.nav-menu li {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 100px;
	list-style: none;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 1);
	border-radius: 0px;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown-menu a {
	color: var(--text-gray);
	font-size: 13px;
	padding: 8px 12px;
	white-space: nowrap;
	border-radius: 0px;
}
.dropdown-menu a:hover {
	color: #fff;
	background: var(--text-light);
}



/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-light);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-top: 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background: #fffffff;
}


.hero-content {
	text-align: center;
	z-index: 1;
	padding: 0 20px;
}

.hero-title {
	font-size: clamp(2rem, 8vw, 3rem);
	font-weight: 200;
	letter-spacing: 0px;
	colour: var(--secondary-dark);
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--secondary-dark);
	font-weight: 300;
	letter-spacing: 2px;
}

/* Headshots */
.team-banner {
	container-type: size;  
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 150px;
	height: 450px;
	background: var(--gradient-90);
	padding: 40px;
}

.team-card {
  position: relative; 
  width: 80cqh;
}

.team-card:nth-child(2) img {
    background-color: #9873d8;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.team-caption {
  position: absolute;   
  bottom: -50px;      
  right: -50px;
  background: white;
  color: var(--text-dark);
  padding: 10px;
  width: 80%;
  height: 30%
  align-text: center;
}


/* Merch Banner */

.merch {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 500px;
	container-type: size;
	padding: 40px;
}

.merch-header {
	display: block;
	margin: 0 auto;
}

.merch-header img {
	width: 500px;
}

.merch-row {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;	
	gap: 100px;
}

.merch-card img {
	width: 60cqh;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: block;	
}

.merch-card:nth-child(1):hover img {
	content: url("images/Products/KeyChainKatA.webp");
	scale: 0.9;
	border: 5px solid;
	border-image: var(--gradient-90) 1;
}

.merch-card:nth-child(2):hover img {
	content: url("images/Products/KeyChainMaraA.webp");
	scale: 0.9;
	border: 5px solid;
	border-image: var(--gradient-90) 1;
}

.merch-card:nth-child(3):hover img {
	content: url("images/Products/KeyChainBaraA.webp");
	scale: 0.9;
	border: 5px solid;
	border-image: var(--gradient-90) 1;
}

/* Cover Art */

.cover-art {

}

.cover-art-bg {
	background: var(--gradient-90);
	height: 1200px;
	width: 850px;
	margin: 0 auto;
	
	mask-image: linear-gradient(0deg, transparent 0%, black 100%);
	-webkit-mask-image: linear-gradient(0deg, transparent 0%, black 100%);
}

.cover-art img{
	display: block;
	width: 1500px;
	margin: -1200px auto 0;
	position: relative;
	transform: scaleX(-1)
}


/* Porfolio Banner */

.portfolio-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-90);
  margin: 0 auto;
  padding: 50px 0px;
  height: 700px;
  max-width: 1800px;
  width: 100%;
  background-clip: content-box;	
}


.portfolio-card {
    padding: 30px;
    box-sizing: border-box;
}

.portfolio-card img {
	width: 250px;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: flex;
	flex-shrink: 0;
}

.portfolio-card > img {
    background-color: #9873d8;
}

.portfolio-caption {
  position: relative;   
  bottom: 30px;      
  right: -80px;
  background: white;
  color: var(--text-dark);
  padding: 10px;
  width: 80%;
  height: 30%;
  align-text: center;
}

.portfolio-socials {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 200px;
	position: relative;
	padding: 5px 10px;
	bottom: 25px;
	right: -55px;
	margin: 0 auto;
	opacity: 0.8;
}

.portfolio-socials img {
	aspect-ratio: 1:1;
	width: 20px;
	
}


/* Img Carousel */

:root {
  --carousel-bg: #111;
  --carousel-gap: 16px;
  --transition: 350ms ease;
}

.carousel-section {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}

.carousel-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 1000px;
	justify-content: ;
}


.carousel-jump-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;	
  flex-shrink: 0;
}

.carousel-jump-btn {
	width: 250px;
	height: 40px;
	background: var(--primary-light);
	border: none;
	opacity: 1;
}

.carousel-jump-btn:hover {
	opacity: 0.8;
	cursor: pointer;
}


.carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--carousel-gap);
  width: 100%;
  max-width: 2000px;
  margin: 2rem auto;
  box-sizing: border-box;
  user-select: none;
}


.carousel__track {
  display: flex;
  align-items: center;
  gap: var(--carousel-gap);
  justify-content: center;
}

.carousel__slide {
  --ar: 1.7778;
  flex-shrink: 0;
  overflow: hidden;
  background: var(#b6b6b6);
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition), width var(--transition), height var(--transition);
}

.carousel__slide img,
.carousel__slide iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.carousel__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.carousel__slide--main {
  width: calc(1080px * 0.35 * var(--ar));
  height: auto;
  cursor: default;
  transform: rotate(-2deg);
  position: relative;
  z-index:2;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

.carousel--youtube .carousel__slide--main {
  width: calc(1920px * 0.4);
  height: calc(1080px * 0.4);
  cursor: default;
  transform: rotate(-2deg);
  position: relative;
  z-index:2;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

.carousel__slide--main:hover {
transform: rotate(0deg);
}

.carousel__slide--side {
  width: calc(1920px * 0.1);
  height: calc(1080px * 0.1);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.carousel__slide--side.prev {
  transform: rotate(5deg);
  margin-right: -100px;
}

.carousel__slide--side.next {
  transform: rotate(5deg);
  margin-left: -100px;
}

.carousel__slide--side.prev:hover {
  opacity: 0.85;
  transform: rotate(10deg) scale(1.05);
}

.carousel__slide--side.next:hover {
  opacity: 0.85;
  transform: rotate(10deg) scale(1.05);
}

.carousel__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary-light);
  opacity: 0.4;
  color: var(--secondary-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.carousel__btn:hover {
  opacity: 0.8;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 12px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e6e6e6;
  opacity: 0.6;
  cursor: pointer;
  border: none;
  margin: 5px;
}

.carousel__dot:hover{
	opacity: 0.8;
}

.carousel__dot--active {
  background: #333;
}

.carousel__lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.85);
    cursor: zoom-out;
}

.carousel__lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: default;
}

.carousel__lightbox-caption {
	position: fixed;
	font-size: 1.5rem;
	bottom: 10px;
	color: #ffffff;
}

/* Entertainment Banner */

/.entertainment-banner-bara {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 250px;
	width: 1800px;
	margin: 40px auto;
	background: url('images/Entertainment/barabannercropped.webp') no-repeat center center;
	transition: filter 0.5s ease;
	background-size: cover;
}

.entertainment-banner-mara {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 250px;
	width: 1800px;
	margin: 40px auto;
	background: url('images/Entertainment/marabannercropped.webp') no-repeat center center;
	transition: filter 0.5s ease;
	background-size: cover;
}

.entertainment-banner-kat {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 250px;
	width: 1800px;
	margin: 40px auto;
	background: url('images/Entertainment/katbannercropped.webp') no-repeat center center;
	background-size: cover;
	transition: filter 0.5s ease;
}


/* Video Carousel */

.playlist.section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.yt-video-single {
	padding: 50px;
}


.yt-carousel {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.yt-carousel h1{
	color: #ffffff;
	margin-bottom: -40px;
}

.carousel--youtube .carousel__slide img,
.carousel--youtube .carousel__slide iframe {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel--youtube .carousel__slide:not(.carousel__slide--loading) img,
.carousel--youtube .carousel__slide:not(.carousel__slide--loading) iframe {
  opacity: 1;
}


.playlist-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-90);
  margin: 0 auto;
  padding: 50px 0px;
  height: 700px;
  max-width: 1800px;
  width: 100%;
  background-clip: content-box;	
}


.playlist-banner-kat {
	background: var(--gradient-90);
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 50px 0px;
    height: 700px;
    max-width: 1800px;
    width: 100%;
    background-clip: content-box;
}

.playlist-banner-mara {
	background: var(--gradient-90);
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 50px 0px;
    height: 700px;
    max-width: 1800px;
    width: 100%;
    background-clip: content-box;
}

.playlist-banner-bara {
	background: var(--gradient-90);
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 50px 0px;
    height: 700px;
    max-width: 1800px;
    width: 100%;
    background-clip: content-box;
}

.carousel--youtube .carousel__slide--side.prev {
  transform: rotate(5deg);
  margin-right: -30px;
}

.carousel--youtube .carousel__slide--side.next {
  transform: rotate(5deg);
  margin-left: -30px;
}

.entertainment-socials-btn {
	width: 250px;
	height: 40px;
	background: var(--primary-light);
	border: none;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}

.entertainment-socials-btn a {
	align-text: center;	
}

/* Reviews */

.review-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-90);
  margin: auto;
  padding: 20px 0px;
  height: 300px;
  max-width: 1800px;
  width: 100%;
  background-clip: content-box;	
}

.review-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-shrink: 0;
}

.comission-cta {
	display: flex;
	flex-shrink: 0;
}

.commission-cta-btn {
	width: 250px;
	height: 40px;
	background: var(--primary-light);
	border: none;
	opacity: 1;
}

.commission-cta-btn:hover {
	opacity: 0.8;
	cursor: pointer;
}

.shop-cta {
	display: flex;
	flex-shrink: 0;
	width: auto;
}

.shop-cta-btn {
	width: 250px;
	height: 40px;
	background: var(--primary-light);
	border: none;
	opacity: 1;
}

.shop-cta-btn:hover {
	opacity: 0.8;
	cursor: pointer;
}

.reviews {
  width: 100%;
  max-width: 800px;
  margin: auto;
  box-sizing: border-box;
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #fff;
  padding: 24px;
  flex: 1;
  width: 688px;
}

.my-reviews {
width: 100%;
margin: 0;
}

.reviews__stars {
  display: flex;
  gap: 2px;
  font-size: 20px;
  line-height: 1;
  color: #ccc;
}

.reviews__star--filled {
  color: #333;
}

.reviews__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.reviews__divider {
  width: 40px;
  border: none;
  border-top: 1px solid #ccc;
  margin: 4px 0;
}

.reviews__name {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.reviews__name:hover {
  text-decoration: underline;
}

.reviews__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary-light);
  opacity: 0.4;
  color: var(--secondary-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.reviews__btn:hover {
  opacity: 0.8;
}

/* Art Credits */

.art-credits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.art-credits-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
}

.art-credits-item img {
  max-height: 500px;
  max-width: 1000px;
  height: auto;
  width: auto;
  display: block;
  padding: 5px;
  transition: filter .2s ease;
}

.art-credits-item:hover img {
  filter: grayscale(80%) brightness(0.6);
}

.ac-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 24px;
}
.ac-lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.ac-lightbox-img { max-width: 90vw; max-height: 80vh; display: block; margin: 0 auto; }
.ac-lightbox-caption { color: #fff; margin-top: 10px; }
.ac-lightbox-caption a { color: #9cf; margin-left: 8px; }


.ac-artist {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1em;
  text-align: center;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.art-credits-item:hover .ac-artist {
  opacity: 1;
}


/* Store */

.store-layout {
	position: relative;
	display: flex;
	width: 100%;
	left: 0;
	flex-direction: row;
	min-height: 100vh;
}

.filters {
	position: sticky;
	top: 30px;
	left: 0;
	width: 20%;
	padding: 0 2% 0 3%;
}

main {
	position: relative;
	width: 60%;
	transform: translateX(-1.5%);
	margin: 0 20% 0 0;
	min-width: 400px;
	box-sizing: border-box;
}

.product-grid {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fill, 340px);
	width: 100%;
	gap: 30px;
	padding: 10px 0px 40px 0px;
}

.product-card {
	height: 340px;
	width: 340px;
	margin: 15px;
}

.product-card__image-wrap img {
	height: 340px;
	width: 340px;
	object-fit: cover;
	display: block;
}

/* Out-of-stock product styling */
.product-card.out-of-stock .product-card__image-wrap {
  position: relative;
}

.product-card.out-of-stock .product-card__image-wrap img {
  filter: grayscale(100%);
  opacity: 0.5;
}

.out-of-stock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.out-of-stock-overlay span {
  padding: 0.6em 1em;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-group {
	padding: 5px 0px;
}
.filter-search {
	border: 2px solid #778087;
	border-radius: 3px;
	transition: all 1s ease;
	padding: 2px;
}

.filter-select {
	border: 1px solid #778087;
	background: var(--primary-light);
	border-radius: 3px;
	transition: all 1s ease;
	padding: 2px;
}

.clear-filters {
	border: 1px solid #778087;
	background: var(--primary-light);
	border-radius: 3px;
	transition: all 1s ease;
	padding: 4px;
}

.clear-filters:hover {
	background: var(--gradient-flow);	
	background-size: 300% 100%;
	transition: all 1s ease;
	animation: flow-gradient 4s linear infinite;
}

.filter-select:has(option:checked:not([value=""])) {
	background: var(--primary-mara);
	border: var(--primary-mara);
}

.filter-search:not(:placeholder-shown) {
  background: var(--primary-mara);
  border: var(--primary-mara);
}


.tag-pills {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tag-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	padding: 4px 0;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.tag-pill::before {
	content: "";
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	border: 2px solid #778087;
	border-radius: 3px;
	transition: all 0.2s ease;
}

.tag-pill[aria-pressed="true"]::before {
	background: var(--primary-mara);
	border: var(--primary-mara);
}

.tag-pill[aria-pressed="true"] {
	color: #c1abff;
	font-weight: 600;
}

.results-meta {
	width: 80%;
	left: 0;
}

.product-card__body {
	display: flex;	
	justify-content: space-between;
	bottom: 0;
	padding: 5px;
	font-family: 'Nunito',sans-serif;
	background: var(--gradient-90);
}

button.product-card {
	border-width: 0;
}

.product-card:hover {
	transform: scale(1.05);
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}

.modal-overlay.open {
	display: flex;
}

.modal {
	position: relative;
	background: #ffffff;
	width: 80%;
	max-width: 1400px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 24px;
	box-sizing: border-box;
	border-radius: 8px;
	display: flex;
	gap: 24px;
	text-align: center;
}

.modal-info {
	display: flex;
	flex-direction: column;
	position: relative;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-width: 30%;
	padding: 20px;
}

.modal-title {
	padding: 30px;
	
}

.modal-description {
	white-space: pre-line;
	padding: 30px;
}

.modal-media {
	align-content: center;
	max-width: 50%;
	min-width: 20%;
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}

.modal-cart-slot {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}

.modal-media .carousel__slide--main {
	max-width: 80%;
}

.modal-media .carousel__track {
	max-width: 80%;
}

.modal-cart-slot paypal-add-to-cart-button {
	align-self: center;
	width: 400px;
}

paypal-add-to-cart-button::part(item-title) {
	text-align: center;
}


.modal-cart-slot .medium {
	align-self: center;
}

.download-button {
	display: inline-block;
	padding: 10px 24px;
	background: var(--accent-color);
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.download-button:hover {
	opacity: 0.85;
}

.dummy-button {
	position: relative;
	user-select: none;
}

.download-button--disabled {
	position: relative;
	padding: 10px 24px;
	left: 10px;
	background: var(--accent-color);
	filter: grayscale(60%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: opacity 0.2s ease;
	min-width: 200px;
	max-width: 300px;
	width: 100%;
}

.download-button--disabled:hover {
  opacity: 1;
}

.dummy-button img {
	position: relative;
	right: 50px;
	top: 6px;
	width: 25px;
	height: 25px;
	user-select: none;
	
}

h3#price-text {
	display: none;
}

#price-text {
	display: none;
}

.item-header,
p.item-description,
#price-text {
	display: none !important;
}

.item-header,
p.item-description,
.price-text {
	display: none;
}

.item-header,
p.item-description,
.item-title {
	display: none;
}

.smart-btn-title,
.smart-btn-price {
	display: none !important;
}

/* Footer */
footer {
	background: var(--gradient-90);
	height: 250px;
	padding: 10px 30px;
	text-align: center;
	display: flex;
	transition: all 0.3s ease;
}

.footer-content {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	flex-direction: row;
	justify-content: center;      
	list-style: none;
	margin: 0 auto;
	padding: 5px;
	gap: 100px;
	transition: all 0.3s ease;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: relative;
	transition: all 0.3s ease;
}

.footer-logo {
	position: absolute;
	width: 180px;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
}

.footer-socials {
	display: flex;
	position: absolute;
	align-items: center;
	justify-content: space-between;
	width: 100px;
	padding: 5px 10px;
	opacity: 0.5;
	top: 170px;
	left: 50%;
	transform: translateX(-50%);
}

.footer-socials img {
	aspect-ratio: 1:1;
	width: 20px;
}

.footer-socials a {
	text-decoration: none;
}

.footer-text {
	position: absolute;
	top: 210px;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.6;
}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		padding: 12px 20px;
		display: flex;
		justify-content: center;
		font-size: 16px;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}


/* Loading Animation */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader {
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* MOBILE RESPONSIVE HOME */

@media (max-width: 768px) {

	header {
		height: 15vw;
		width: 100%;
	}
	.main-header {
		height: 15vw;
		width: 100%;
	}
	
    .header-logo{
    	position: absolute;
	    top: 5px;
    	left: 50%;
    	transform: translateX(-56%);
    	width: 50vw;
    	height:auto;
    	z-index: 1001;	
    }
	
	.sub-header {
		height: 13vw;
		padding: 8px 0;
	}
	
	nav {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	
    .nav-menu {
        position: fixed;
        top: 28vw;
        left: -100%;
        width: 100vw;
        height: 300px;
        flex-direction: column;
        justify-content: center;
        background: var(--primary-light);
        text-align: center;
        transition: 0.3s;
        gap: 2px;
        padding: 2px;
		transform: none;
    }
    
	.nav-menu a {
	    color: var(--text-gray);
	    gap: 1px;
	    padding: 2px;
	}
    
	.view-cart-slot {
		position: absolute;
		right: auto;
		bottom: 40%;
		width: auto;
		height: 50%;
		display: flex;
		padding: 4px 0;
	}
	
	.view-cart-slot * {
		position: relative;
		width: auto;
		height: 100%;
	}
	
    .menu-toggle {
        position: absolute;
        display: flex;
        bottom: 40%;
        right: 10%;
    }
	
	.dropdown-menu {
		position: static;
		display: none;
		background: transparent;
		opacity: 1;
		visibility: visible;
		margin: 0;
		gap: 1px;
	}

	.nav-dropdown.open .dropdown-menu {
		display: flex;
	}

	.dropdown-menu a {
		color: var(--text-gray);
		font-size: 0.8rem;
	}

	.dropdown-menu a:hover {
		background: transparent;
		color: #fff;
	}
	

	.hero-section {
		height: 50vw;
		padding: 60px 0;
	}

	.team-banner {
		flex-direction: row;
		height: 50vw;
		gap: 60px;
		padding: 30px 20px;
	}

	.team-card {
		width: 30%;
	}    
	
	.team-caption {
	    width: 75%;
	    height: auto;
	   	right: -10px;
	}
	
	.team-caption h3 {
	    font-size: 0.6em;
	}

    .team-caption p {
        font-size: 0.4em;
    }

	.merch {
		height: 70vw;
		width: 100vw;
	}

	.merch-header img {
		width: 100%;
		max-width: 300px;
	}

	.merch-row {
		flex-direction: row;
		padding: 10px;
		gap: 10px
	}

	.merch-card img {
		width: 100%;
	}
	
	.cover-art-bg {
		width: 100%;
		height: 600px;
	}

	.cover-art img {
		width: 100%;
		margin-top: -600px;
	}


    /* MOBILE RESPONSIVE PORTFOLIO */

	.portfolio-wrapper {
		height: auto;
		width: 100vw;
		flex-direction: column;
	}

	.portfolio-card {
		width: 50%;
		height: 40%;
		max-height: 350px;
		padding: 20px;
	}
	
	.portfolio-card img {
	    width: 100%;
	}

	.portfolio-caption {
		position: relative;
		width: 100%;
		right: 0;
	}

	.portfolio-socials {
        width: 100%;
		right: 0;
	}
	
	.portfolio-socials img {
	    width: 15px;
	}

	.carousel-section {
		display: relative;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		padding: 5px;
		left: -50%;
	}
	
    .carousel__dots {
        display: none;
    }

	.carousel-main {
        width: 100%;
	}
	
	.carousel {
        width: 100%;
    }
    
    .carousel__track {
        width: 90%;
    }
    
	.carousel__slide--main {
		width: 100%;
		height: auto;
		aspect-ratio: var(--ar);
	}

	.carousel-jump-nav {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 20px;
	}

	.carousel-jump-btn {
		width: auto;
		padding: 8px 16px;
		background: var(--primary-light);
		border: none;
		opacity: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		color: inherit;
	}

	.carousel-jump-btn a {
		align-text: center;
	}

	.carousel--youtube .carousel__slide--main {
		width: 90vw;
		height: calc(90vw * 0.5625);
	}

	.carousel__slide--side {
		display: none;
	}

	.review-wrapper {
		height: auto;
		width: 100vw;
	}

	.review-section {
		flex-direction: column;
		padding: 20px 0;
		width: 100vw;
	}

    .reviews {
        width: 95%;
    }

	.reviews__card {
		width: 100%;
	}
	
/* MOBILE RESPONSIVE STORE */

	.filters {
		width: 30%;
	}

	main {
		min-width: 400px;
		margin: 10px;
		transform: translateX(0);
	}

	.product-grid {
		grid-template-columns: repeat(auto-fill, 400px);
		padding: 10px 20px 40px 20px;
	}

	.results-meta {
		width: 100%;
		padding: 0 20px;
	}

	.product-card {
		width: 50vw;
		height: 50vw;
	}

	.product-card__body .product-card__title, .product-card__price {
		font-size: 0.8rem;
	}

	.product-card__image-wrap img {
		width: auto;
		height: 50vw;
		aspect-ratio: 1/1;
	}

	.modal {
		flex-direction: column;
		width: 90%;
		padding: 16px;
	}

	.modal-cart-slot paypal-add-to-cart-button {
		width: 100%;
	}

	.entertainment-banner-bara,
	.entertainment-banner-mara,
	.entertainment-banner-kat {
		width: 100%;
	}

	.playlist-banner,
	.playlist-banner-kat,
	.playlist-banner-mara,
	.playlist-banner-bara {
		height: auto;
		width: 100%;
		flex-direction: column;
		padding: 30px 20px;
	}

    .yt-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95%;
    }
    
    .yt-video-single {
        width: 100%;
    }
    
    .yt-video-single * {
        width: 100%;
    }

	footer {
		height: auto;
		flex-direction: column;
		padding: 30px 20px;
	}

	.footer-content {
		position: static;
	}

	.footer-links {
		flex-direction: column;
		gap: 16px;
	}

	.footer-logo {
		position: static;
		transform: none;
		margin: 0 auto 16px;
	}

	.footer-socials {
		position: static;
		transform: none;
		display: flex;
		margin: 16px auto;
	}

	.footer-text {
		position: static;
		transform: none;
		margin-top: 16px;
	}
}